'Declaration Public Overloads Function ExecuteMethod( _ ByVal connection As OracleConnection, _ ByVal name As String, _ ByVal resultType As Type, _ ByVal ParamArray parameters() As Object _ ) As Object
public object ExecuteMethod( OracleConnection connection, string name, Type resultType, params object[] parameters )
Parameters
- connection
- The connection to the Oracle database where the UDT used is declared.
- name
- The method to be invoked.
- resultType
- The type of the method's return value.
- parameters
- The list of input parameters passed to the method.
Return Value
The method's return value casted to the resultType type.